type github.com/jackc/pgx/v5.batchResults
18 uses
github.com/jackc/pgx/v5 (current package)
batch.go#L117: type batchResults struct {
batch.go#L129: func (br *batchResults) Exec() (pgconn.CommandTag, error) {
batch.go#L173: func (br *batchResults) Query() (Rows, error) {
batch.go#L214: func (br *batchResults) QueryRow() Row {
batch.go#L221: func (br *batchResults) Close() error {
batch.go#L263: func (br *batchResults) earlyError() error {
batch.go#L267: func (br *batchResults) nextQueryAndArgs() (query string, args []any, ok bool) {
conn.go#L957: return &batchResults{ctx: ctx, conn: c, err: err}
conn.go#L981: return &batchResults{ctx: ctx, conn: c, err: fmt.Errorf("rewrite query failed: %w", err)}
conn.go#L1016: func (c *Conn) sendBatchQueryExecModeSimpleProtocol(ctx context.Context, b *Batch) *batchResults {
conn.go#L1024: return &batchResults{ctx: ctx, conn: c, err: err}
conn.go#L1029: return &batchResults{
conn.go#L1038: func (c *Conn) sendBatchQueryExecModeExec(ctx context.Context, b *Batch) *batchResults {
conn.go#L1046: return &batchResults{ctx: ctx, conn: c, err: err}
conn.go#L1053: return &batchResults{ctx: ctx, conn: c, err: err}
conn.go#L1063: return &batchResults{
tx.go#L272: return &batchResults{err: ErrTxClosed}
tx.go#L374: return &batchResults{err: ErrTxClosed}